home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Sound"
- Option Explicit
-
- '******************************
- 'Sound.
- '******************************
- Public Const SND_ASYNC = &H1
- Public Const SND_NODEFAULT = &H2
- Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" _
- (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
-
-
-
-